html {
    scroll-behavior: smooth;
}

.container::before {
    content: none;
}

.container::after {
    content: none;
}

.container {
    width: 90%;
}

.top-header-maasmind-DU {
    background-color: #158CF0;
    padding: 5px;
}

.top-header-maasmind-DU p {
    margin: 0;
}

.top-header-maasmind-DU * {
    font-size: 16px;
    color: white;
}

.top-header-maasmind-DU > article {
    display: flex;
    justify-content: space-between;
}

.top-header-maasmind-DU > article > aside {
    display: flex;
    gap: 10px;
}

.top-header-maasmind-DU > article > aside > span {
    display: flex;
    gap: 10px;
}

.header-maasmind-DU {
    padding: 20px 0;
    border-bottom: 1px solid #686869;
}

.header-maasmind-DU > article {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-maasmind-DU > article > aside > a > img {
    width: 200px;
    height: auto;
}


nav {
    background-color: white;
}

.menu li a {
    color: #1c1a1a;
    padding: 20px 35px;
}

.sub-manu {
    width: 200%;
}

.sub-manu > li {
    width: 100%;
}

.sub-manu > li > a {
    padding: 20px 10px;
    font-weight: bold;
}

.sub-manu > li > a:hover {
    background-color: #158CF0;
}

.sub-manu > li:hover {
    background-color: #158CF0;
}

.footer-maasmind-DU {
    background-color: #E5E8EE;
    padding: 10px 0 10px;
}

.footer-maasmind-DU > article {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-maasmind-DU > article > aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-maasmind-DU > article > aside > h3 {
    color: #158CF0;
}

.about-footer-maasmind-DU {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-footer-maasmind-DU > img {
    width: 200px;
}

.footer-maasmind-DU > article > aside > ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.product-footer-maasmind-DU {
    flex-basis: 30%;
}

.footer-maasmind-DU > article > aside > ol > li > a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.menu-footer-maasmind-DU {
    flex-basis: 15%;
}

.footer-maasmind-DU ol {
    list-style: none;
}

.contact-footer-maasmind-DU {
    flex-basis: 30%;
}

.contact-footer-maasmind-DU > form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-footer-maasmind-DU > form :is(input, textarea) {
    padding: 10px;
    border: none;
    outline: none;
}

.contact-footer-maasmind-DU .submit {
    background-color: #158CF0;
    color: white;
    font-size: 18px;
}

.copyrights {
    font-size: 18px;
    color: #686869;
    text-align: center;
}



.card {
    width: 90%;
    margin: 30px auto;
    /* height: 200px; */
    border-radius: 15px;
    background: rgba(3, 32, 43, 0.103);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 20px;
  }
  
  .card::before {
    content: "";
    height: 200px;
    width: 200px;
    position: absolute;
    top: -30%;
    left: -10%;
    border-radius: 50%;
    border: 35px solid rgba(217, 82, 82, 0.102);
    transition: all .5s ease;
    filter: blur(.5rem);
  }
  
  .text {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    font-weight: 900;
    font-size: 1.2em;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .text > div > h2 {
    font-size: 30px;
  }
  
  .subtitle {
    font-size: 1em;
    font-weight: 300;
  }
  
  .card:hover::before {
    width: 140px;
    height: 140px;
    top: -30%;
    left: 90%;
    filter: blur(0rem);
  }
.card-btn {
  padding: 10px;
    background-color: red;
    border: none;
    color: white;
    width: auto;
    border-radius: 5px;
    font-weight: 400;
}

.input-block-level, .pull-center {
    padding: 10px;
}

@media (max-width: 767px) {
    .header-maasmind-DU > article > aside > a > img {
        width: 150px;
    }
    .mainWrap {
        width: auto;
        padding: 50px 20px;
    }

    .menu {
        display: none;
        padding: 0px !important;
        position: absolute;
        right: 0;
        width: 100%;
    }

    .responsive-menu {
        display: block;
    }

    nav {
        margin: 0;
        background: none;
    }

    .menu li {
        display: block;
        margin: 0;
    }

    .menu li a {
        background: #fff;
        color: #797979;
    }

    .menu li a:hover,
    .menu li:hover>a {
        background: #ff0000;
        color: #fff;
    }

    .menu ul {
        visibility: hidden;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        transform: initial;
    }

    .menu li:hover>ul {
        visibility: visible;
        opacity: 1;
        position: relative;
        transform: initial;
    }

    .menu ul ul {
        left: 0;
        transform: initial;
    }

    .menu li>ul ul:hover {
        transform: initial;
    }

    .footer-maasmind-DU > article {
        flex-wrap: wrap;
        gap: 10px;
    }

    .about-footer-maasmind-DU, .contact-footer-maasmind-DU {
        flex-basis: 100%;
    }

    .product-footer-maasmind-DU, .menu-footer-maasmind-DU {
        flex-basis: 100%;
    }

    .copyrights {
        margin-top: 20px;
    }
}

.training-banner-image > img {
    width: 100%;
}